home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
01
/
3
/
DISK0130.ZIP
/
UNIQUE.MAN
< prev
next >
Wrap
Text File
|
1983-09-07
|
463b
|
18 lines
.im man.im
.NM unique delete adjacent duplicate lines
.SY unique
.FU
.ital unique
writes to its output only the first line from each
group of adjacent identical input lines.
It is most useful for text that has been sorted to bring identical lines
together; in this case it passes through only unique instances of input
lines.
.EG
To eliminate duplicate lines in the output of a program:
.Q1
program }temp1
sortf {temp1 }temp2
unique {temp2
.Q2